Parse

Adobe AIR native extension

Provides access to the Parse SDK

The extension is available here: com.distriqt.Parse

Documentation



Setup Parse

1. Create Parse Application
2. Configuring iOS


Setup the Extension

1. Add the Extension
2. Initialise the Extension


Usage

1. Setup Application


External Links

- ASDocs

Initialising the Extension

You should perform this once in your application. This initialises the extension using your application key. Note you should always check whether the extension is supported before making calls. This allows you to react to whether the functionality is available on the device.

try
{
	Core.init();
	Parse.init( APPLICATION_KEY );
	if (Parse.isSupported)
	{
		// Functionality here
	}
}
catch (e:Error)
{
	trace( e );
}

You generate your application keys here: /user/applications

If you have any issues with the application key, check this FAQ